home *** CD-ROM | disk | FTP | other *** search
/ The Word 5 / The Word 5.adf / FiLeS / AREXX_EXAMPLES.lha / AREXX_EXAMPLES / Example8.rexx < prev    next >
OS/2 REXX Batch file  |  1995-02-25  |  118b  |  9 lines

  1. /* Example 8 */
  2.  
  3. Say "Enter Age : "
  4. Parse Pull num
  5.  
  6. If num > 21 Then
  7.    Say "Hello, Crusty"
  8. Else
  9.    Say "Hello, Child"